Xbasic
CALCULATED_FIELD_DELETE Function
Syntax
V CALCULATED_FIELD_DELETE(P variables,C name)
Arguments
- variables
A pointer to the variable scope. See Variable Data Types and Scope.
- name
The name of the calculated field. Character
Description
Delete a calculated field.
Discussion
The CALCULATED_FIELD_DELETE() function removes a calculated variable.
Example
dim ptr as P ptr = local_variables() calculated_field_delete(ptr, "New")
Limitations
Desktop applications only.
See Also